all:
	g++ -O3 src/main.cc -o main -std=c++11
debug:
	g++ -g src/main.cc -o main -std=c++11
